From: Ian Campbell Date: Fri, 26 Apr 2013 10:58:46 +0000 (+0100) Subject: xen: arm: correct platform detection in public header. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6940 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=6aaee4960d8a56aeab9d962ce554dff7f987e1fd;p=xen.git xen: arm: correct platform detection in public header. These headers cannot use the CONFIG_FOO defines provided when building Xen (since they aren't provided when building tools or by external components) and need to use the compiler provided architecture defines. This manifested itself as a failure to build xenctx.c on ARM64 due to the missing symbols contains . Signed-off-by: Ian Campbell Acked-by: Stefano Stabellini --- diff --git a/xen/include/public/arch-arm.h b/xen/include/public/arch-arm.h index 746df8e69f..2f5ce1826b 100644 --- a/xen/include/public/arch-arm.h +++ b/xen/include/public/arch-arm.h @@ -218,7 +218,7 @@ typedef uint64_t xen_callback_t; #define PSR_MODE_SYS 0x1f /* 64 bit modes */ -#ifdef CONFIG_ARM_64 +#ifdef __aarch64__ #define PSR_MODE_BIT 0x10 /* Set iff AArch32 */ #define PSR_MODE_EL3h 0x0d #define PSR_MODE_EL3t 0x0c